home *** CD-ROM | disk | FTP | other *** search
/ The Atari Compendium / The Atari Compendium (Toad Computers) (1994).iso / files / prgtools / programm.ing / dlibsrc.arc / CHDIR.C < prev    next >
Encoding:
C/C++ Source or Header  |  1988-10-04  |  131 b   |  9 lines

  1. #include <stdio.h>
  2. #include <errno.h>
  3.  
  4. int chdir(pathname)
  5.     char *pathname;
  6.     {
  7.     return(errno = gemdos(0x3B, pathname));
  8.     }
  9.